Mega Code Archive

Categories
1) Android
2) ASP.Net
3) ASP.Net Tutorial
4) C
5) C Tutorial
6) C#
7) C# Book
8) C# by API
9) C# Tutorial
10) C++
11) C++ Tutorial
12) Delphi
13) Flash ActionScript
14) Flex
15) Java
16) Java Book
17) Java by API
18) Java Tutorial
19) JavaScript DHTML
20) JavaScript Reference
21) JavaScript Tutorial
22) MSOfficeExcel 2007 Tutorial
23) MSOfficePowerPoint 2007 Tutorial
24) MSOfficeWord 2007 Tutorial
25) MSSQL
26) MSSQL Tutorial
27) MySQL
28) MySQL Tutorial
29) Oracle PLSQL
30) Oracle PLSQL Tutorial
31) Perl
32) Php
33) PostgreSQL
34) Python
35) Python Tutorial
36) Ruby
37) Silverlight
38) VB.Net
39) VB.Net by API
40) VB.Net Tutorial
41) Visual C++ .NET
42) VisualBasic Script
43) XML
44) XML Tutorial
 
C Tutorial
1) Array
2) Assert h
3) Ctype h
4) Data Structure
5) Data Type
6) File
7) Function
8) Language
9) Math h
10) Memory
11) Operator
12) Pointer
13) Preprocessor
14) Printf Scanf
15) Search Sort
16) Setjmp h
17) Signal h
18) Statement
19) Stdio h
20) Stdlib h
21) String
22) String h
23) Structure
24) Time h
25) Wctype h
26) Wide Character String
Data Type
1) %6f limits the output to only six digits
2) %e displays numbers in scientific format
3) %g displays a floating-point number in either the %f or %e (scientific) format, depending on which is shorter
4) All letters of the alphabet, symbols, and number keys on the keyboard have ASCII codes
5) ASCII Table
6) Assignment of an integer expression to a floating-point variable
7) Bits right and left shift
8) C Numeric Data Types
9) C provides two main floating-point representations
10) Characters and numbers
11) Checking for Upper- and Lowercase
12) Compare char variable in if statement
13) Compare characters to characters in if statement
14) Comparing the equality operator (==) with the = assignment operator
15) Constants
16) Constants and Variables with macro
17) Converting uppercase to lowercase
18) Data type cast
19) Data type char are stored internally as integers
20) Define constant float value using const
21) Define escape sequence in a char
22) Define float constant value using Macro
23) Define float in In scientific notation (The E notation)
24) Define float variable and output to the console
25) Define variables of the type integer
26) Display the ASCII characters and their corresponding codes, from Code 32 on up to Code 127
27) Displaying Character Data Types with printf
28) Displaying Floating-Point Data Types with printf
29) Displaying Integer Data Types with printf
30) Divide Integer
31) Division with float values
32) Do a calculation on float number
33) Each 1 or 0 is called a bit
34) Escape sequences
35) Float family (real numbers with decimal points)
36) Floating Point variables
37) For printing double you can use %lf
38) Forced conversion
39) Formats for representing floating points
40) Get maximum and minimum values of data type
41) Get size and address for a double
42) Get size and address for long integer
43) Hexadecimal numbers
44) If both operands i1 and i2 are integers, the expression i1i2 provides integer division
45) In C, the value nonzero is true while zero is taken as false
46) Integer data type storage allocations
47) Integer family
48) Introduction to Data Types
49) Multiple declarations
50) Octal numbers
51) Output both value in a union
52) Overflow in char and unsigned char data types
53) Printing an unsigned integer in bits
54) Printing floating-point numbers with floating-point conversion specifiers
55) Printing integers right-justified
56) Printing strings and characters
57) Read float number and do a calculation
58) Reading and Writing Single Characters
59) Reading characters and strings
60) Reading floating-point numbers
61) Reading integers
62) Register variable
63) Save Tab key into a char, you use an escape sequence
64) Signed and Unsigned Variables
65) Simple calculations
66) Sum the integers from 1 to a user-specified number
67) The atoi() function
68) The form of a floating-point declaration
69) The getchar() function
70) The putchar() function
71) To create precision with floating-point numbers
72) To test two expressions for equality, use == instead of =
73) Type casting
74) Type conversion
75) Union
76) Use sscanf to get and then double a number from the user
77) Use the %E in printf() to display scientific-notation numbers
78) Use the format %f for printing floating numbers
79) Use unsigned variables
80) Using an enumeration type
81) Using functions isdigit, isalpha, isalnum, and isxdigit
82) Using functions islower, isupper, tolower, toupper
83) Using functions isspace, iscntrl, ispunct, isprint, isgraph
84) Using the integer conversion specifiers
85) Using type char
86) What is a data type
87) Working with complex numbers